//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ this.linkText+ " |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-01A
TN_Widget.CreateTable([['U.S. Women's Open Golf','Riviera Country Club','Pacific Palisades, CA','Tuesday','6/2/2026','TBD','7189551','U-S--Women-s-Open-Golf-6-2-2026'],['U.S. Women's Open Golf','Riviera Country Club','Pacific Palisades, CA','Wednesday','6/3/2026','TBD','7189552','U-S--Women-s-Open-Golf-6-3-2026'],['U.S. Women's Open Golf','Riviera Country Club','Pacific Palisades, CA','Thursday','6/4/2026','TBD','7189547','U-S--Women-s-Open-Golf-6-4-2026'],['U.S. Women's Open Golf','Riviera Country Club','Pacific Palisades, CA','Friday','6/5/2026','TBD','7189548','U-S--Women-s-Open-Golf-6-5-2026'],['U.S. Women's Open Golf','Riviera Country Club','Pacific Palisades, CA','Saturday','6/6/2026','TBD','7189549','U-S--Women-s-Open-Golf-6-6-2026'],['U.S. Women's Open Golf','Riviera Country Club','Pacific Palisades, CA','Sunday','6/7/2026','TBD','7189550','U-S--Women-s-Open-Golf-6-7-2026'],['U.S. Open Championship - Monday Practice','Shinnecock Hills Golf Club','Southampton, NY','Monday','6/15/2026','7:00 AM','7212361','U-S--Open-Championship---Monday-Practice-6-15-2026'],['U.S. Open Championship - Tuesday Practice','Shinnecock Hills Golf Club','Southampton, NY','Tuesday','6/16/2026','7:00 AM','7210087','U-S--Open-Championship---Tuesday-Practice-6-16-2026'],['U.S. Open Championship - Wednesday Practice','Shinnecock Hills Golf Club','Southampton, NY','Wednesday','6/17/2026','7:00 AM','7209443','U-S--Open-Championship---Wednesday-Practice-6-17-2026'],['U.S. Open Championship - Thursday','Shinnecock Hills Golf Club','Southampton, NY','Thursday','6/18/2026','7:00 AM','7209444','U-S--Open-Championship---Thursday-6-18-2026'],['U.S. Open Championship - Friday','Shinnecock Hills Golf Club','Southampton, NY','Friday','6/19/2026','7:00 AM','7209445','U-S--Open-Championship---Friday-6-19-2026'],['U.S. Open Championship - Saturday','Shinnecock Hills Golf Club','Southampton, NY','Saturday','6/20/2026','7:00 AM','7209446','U-S--Open-Championship---Saturday-6-20-2026'],['U.S. Open Championship - Sunday','Shinnecock Hills Golf Club','Southampton, NY','Sunday','6/21/2026','7:00 AM','7209447','U-S--Open-Championship---Sunday-6-21-2026'],['US Senior Open Golf: Practice Round - Wednesday','Scioto Country Club','Columbus, OH','Wednesday','7/1/2026','8:00 AM','7247227','US-Senior-Open-Golf--Practice-Round---Wednesday-7-1-2026'],['US Senior Open Golf - Thursday','Scioto Country Club','Columbus, OH','Thursday','7/2/2026','8:00 AM','7247222','US-Senior-Open-Golf---Thursday-7-2-2026'],['US Senior Open Golf - Friday','Scioto Country Club','Columbus, OH','Friday','7/3/2026','8:00 AM','7247223','US-Senior-Open-Golf---Friday-7-3-2026'],['US Senior Open Golf - Saturday','Scioto Country Club','Columbus, OH','Saturday','7/4/2026','8:00 AM','7247224','US-Senior-Open-Golf---Saturday-7-4-2026'],['US Senior Open Golf - Sunday','Scioto Country Club','Columbus, OH','Sunday','7/5/2026','8:00 AM','7247225','US-Senior-Open-Golf---Sunday-7-5-2026']],'US Open Golf','http://www.ticketnetwork.com/ticket/US-Open-Golf-events.aspx');